home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / jcool01.zip / PROPERTY.C < prev    next >
C/C++ Source or Header  |  1992-08-20  |  873b  |  27 lines

  1. //
  2. // Copyright (C) 1992 General Electric Company.
  3. //
  4. // Permission is granted to any individual or institution to use, copy, modify,
  5. // and distribute this software, provided that this complete copyright and
  6. // permission notice is maintained, intact, in all copies and supporting
  7. // documentation.
  8. //
  9. // General Electric Company provides this software "as is" without
  10. // express or implied warranty.
  11. //
  12. // Changed: VDN 04/15/92 -- Lice version
  13. //
  14. // In Lisp, property list provides a flexible way of storing intermediate
  15. // information, without changing the data structures. A property list is
  16. // implemented as a association vector between names and values.
  17. // Values can be pointers, ints, longs, float, double, and void* of course.
  18.  
  19.  
  20. #include <cool/Property.h>
  21.  
  22. #include <cool/Pair.C>
  23. #include <cool/Vector.C>
  24. #include <cool/Association.C>
  25.  
  26.  
  27.